Forcing balance.
===============
Sometimes the waypoints just favor one team over the other beyond the 2:1/1:2 win:lose ratios that are acceptable.  If a radical change in the script match time or respawn time may fix that not all Fritzbotians may want to use the changes, feeling that they go too far.  Therefore to support both sides in the argument a solution using a command line cvar is presented.

In those difficult to balance waypoints, a new user cvar is created, Fritzbot_balanceIt.  The intended use in the console is;

/set Fritzbot_balanceIt n
 where n = 0..2

for n = 0 (or if not set)
 The waypoints remain unbalanced
for n = 1 
 the script is changed to approach a 1:1 balance
for n = 2
 the script is changed to be an acceptable 2:1/1:2 balance

Waypoints that have acceptable balance will just ignore the cvar, and others may treat n=1 and n=2 the same.


SO HOW DO YOU USE THIS OPTION?
=============================

You can set the cvar 3 ways; 
1) when you start the game/map from a shortcut or batch file.
 
  Create a shortcut and set the properties to
  "C:\Program Files\Wolfenstein - Enemy Territory\ET.exe" +set fs_game fritzbot +sv_pure 0 +g_gametype 2 +devmap caha_tavern_b2 +set Fritzbot_balanceIt 1 

  or create a bat file with the same contents and invoke the batch file (shortcut method is preferred, because you set the working directory C:\PROGRA~1\WOLFEN~1).  Adjust the paths as may be needed for your wolfenstein installation

2) From the game console.
  Open the console (`) and type

  /set Fritzbot_balanceIt 1

  and start or restart the map

  /map caha_tavern_b2

  the cvar will remain set until you reset it or exit ET.

3) From inside a cfg file.
  You can place the cvar in 3 types of cfg files namely, 
  a) one with a filename of your own choosing (say FBB.cfg),
  b) inside the <mapname>.cfg (e.g.caha_tavern_b2.cfg) that will always be invoked when you host the map, 
  Or finally
  c) inside one of the ET startup cfg files (default.cfg etc.).

  Use a text editor like notepad and add the line;

  set Fritzbot_balanceIt 1

  at the end of the file on a new line.  You chose option 3a you will have to open the console and exec the cfg file manually (example: exec FBB.cfg )